gsk: Move text-related test out of ci
authorMatthias Clasen <mclasen@redhat.com>
Sun, 28 Jul 2019 13:35:37 +0000 (09:35 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 28 Jul 2019 13:35:37 +0000 (09:35 -0400)
These are too sensitive to rendering differences
between renderers to run reliably in ci, but we
still want to keep them around. In particular,
the big glyph tests are useful to exercise the
GL glyph cache.

testsuite/gsk/meson.build

index 574f9368ca946681a1f6aeb58f4099e6448f5d8a..70cda53e15d620fd4de2cb8649e36aeba6bac4b8 100644 (file)
@@ -18,7 +18,6 @@ node_parser = executable(
 )
 
 compare_render_tests = [
-  'big-glyph',
   'blend-normal',
   'blend-difference',
   'clip-coordinates-3d',
@@ -43,10 +42,8 @@ compare_render_tests = [
   'empty-repeat',
   'empty-rounded-clip',
   'empty-shadow',
-  'empty-text',
   'empty-texture',
   'empty-transform',
-  'huge-glyph',
   'opacity_clip',
   'outset_shadow_offset_both',
   'outset_shadow_offset_x',
@@ -62,6 +59,14 @@ compare_render_tests = [
   'opacity-overlapping-children',
 ]
 
+# these are too sensitive to differences in the renderers
+# to run in ci, but still useful to keep around
+informative_render_tests = [
+  'big-glyph',
+  'empty-text',
+  'huge-glyph',
+]
+
 renderers = [
   # name      exclude term
   [ 'opengl', ''    ],